"Division"
By Marc Gladstein
ARCADIAN 1, no. 10 (Sep. 31, 1979): 80.


_DIVISION_ with results in non-decimal format was run by Marc Gladstein for
those who would like to see the quotient printed with the remainder
continued as a fraction.  The gist of it is -
     10 INPUT "D1=" X
     20 INPUT "D2=" Y
     30 Q= X [div] Y; R=RM
     40 PRINT "QUOTIENT = "
     50 PRINT #1,Q,;IF R PRINT #1," ",R,"/",Y